home *** CD-ROM | disk | FTP | other *** search
- // Example #11: Download a file from a ftp site with
- // showing the progress. The socket mode by open in
- // asynchronous mode by setting the socket option in
- // the iftp.ini file before the Progress Command will
- // work. Note: While showing a progress is useful,
- // it is extra overhead and technically, there is a
- // slight file transfer performance hit because of
- // extra processing taking place.
- //
-
- open mailhub
- if not success then abort
- progress on
- copy ftp:/usenet/*.* \iftp\import
-
-